home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / Machine.java < prev    next >
Text File  |  1998-09-08  |  624b  |  37 lines

  1. package com.symantec.itools.lang;
  2.  
  3.  
  4. /**
  5.  * @author Symantec Internet Tools Division
  6.  * @version 1.0
  7.  * @since VCafe 3.0
  8.  */
  9.  
  10. public class Machine
  11. {
  12.  
  13.     /**
  14.      * @since VCafe 3.0
  15.      */
  16.     /* constants */
  17.     // size of is number of bytes
  18.     public static final int SIZEOF_LONG = 8;
  19.  
  20.     /**
  21.      * @since VCafe 3.0
  22.      */
  23.     public static final int SIZEOF_INT = 4;
  24.  
  25.     /**
  26.      * @since VCafe 3.0
  27.      */
  28.  
  29.     // width of is number of bits
  30.     public static final int WIDTHOF_BYTE = 8;
  31.  
  32.     /**
  33.      * @since VCafe 3.0
  34.      */
  35.     public static final int WIDTHOF_INT = 32;
  36.     
  37. }